* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
  }
  
  body {
    position: relative;
    font-size: 28px;
    background-color: black;
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
  }
  
  /* .navrap{
    position: relative;
    font-size: 28px;
    background-color: black;
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
  } */
  
  nav {
    position: fixed;
    top: 0%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-content: center;
    display: flex;
    flex-direction: row;
    background: rgb(0, 212, 255);
    background: linear-gradient(0deg, rgba(0, 212, 255, 0.022934173669467817) 0%, rgba(0, 0, 0, 1) 100%);
    padding-right: 30px;
  }
  
  .header img {
    width: 100%;
  }
  
  
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 2%;
    overflow: hidden;
    background: transparent;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: #111;
  }
  
  .active {
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
  }
  
  .active2 {
    background-color: crimson;
  }
  
  
  
  
  .menu {
    margin: -10px;
  
  
  }
  
  
  .menu ul li {
    display: inline
  }
  
  .menu ul li a {
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    /* padding: 20px; */
  }
  
  .menu ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 20px;
  }
  
  
  
  /* 1st row */
  * {
    box-sizing: border-box
  }
  
  /* Slideshow container */
  
  .play-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .play-button:hover {
    background-color: darkred;
  }
  
  .slideshow-container {
    width: 99%;
    height: auto;
    position: relative;
    margin: auto;
    /* padding-top: 8%; */
    justify-content: center;
    /* padding-left: 12px; */
    /* padding-right: 14px; */
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  .activeSlide {
    display: block;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Caption text */
  .text {
    color: white;
    font-size: 40px;
  
    position: absolute;
    bottom: 8px;
    width: 100%;
    padding-left: 1%;
    padding-bottom: 1%;
    float: left;
    text-decoration: none;
  }
  
  
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    /* padding: 8px 12px; */
    position: absolute;
    top: 0;
  }
  
  /* The dots */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active3,
  .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {
      opacity: .4
    }
  
    to {
      opacity: 1
    }
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
  
    .prev,
    .next,
    .text {
      font-size: 11px
    }
  }
  .mySlides img{
    height: 715px;
    width: 2000px;
  }















  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.photo {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* transition: transform 0.3s; */
    display: grid;
    padding-top: 30px;
    grid-template-columns: auto auto auto auto auto auto ;
    grid-column-gap: 50px;
    grid-row-gap: 20px;
}

.photo img {
    width: 250px;
    height: 30vh;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.movie-name {
    margin-bottom: 10px;
}

.play-button1 {
    background: none;
    border: none;
    color: red;
    font-size: 24px;
    cursor: pointer;
}

.heading h1{
    color: white;
    padding-left: 2%;
    font-size: 40px;
}
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  margin-top: 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 80px; 
  padding-right: 2px;
}

.footer-section {
  flex: 1;
  margin: 0 10px;
}

.footer-section h3 {
  margin: 0;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding-left: 2%;
  margin-right: 2%;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: -7px;
}

.footer-section li {
  margin-bottom: 5px;
  font-size: 16px;
  
}


.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-logo img {
  width: 150px;
}

